home *** CD-ROM | disk | FTP | other *** search
- unit Addu;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- Forms, Dialogs, Buttons, ExtCtrls, Menus, StdCtrls;
-
- type
- TAddF = class(TForm)
- Label1: TLabel;
- Edit1: TEdit;
- BitBtn1: TBitBtn;
- BitBtn2: TBitBtn;
- ComboBox1: TComboBox;
- Label2: TLabel;
- procedure FormCreate(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- AddF: TAddF;
-
- implementation
-
- {$R *.DFM}
-
- procedure TAddF.FormCreate(Sender: TObject);
- begin
- AutoScroll := True;
- end;
-
- end.
-